ZAP Scanning Report

Summary of Alerts

Risk LevelNumber of Alerts
High3
Medium21
Low63
Informational0

Alert Detail

High (Medium)SQL Injection

Description

SQL injection may be possible.

URL

https://salesforce1.kayako.com/admin/index.php?%2FBase%2FAvatar%2FJSON%2F0%2F200=+AND+1%3D1+--+

    Parameter

/Base/Avatar/JSON/0/200

    Attack

AND 1=1 --

URL

https://salesforce1.kayako.com/admin/index.php?%2FBase%2FAvatar%2FJSON%2F0%2F200=+AND+1%3D1+--+

    Parameter

/Base/Avatar/JSON/0/200

    Attack

AND 1=1 --

Instances

2

Solution

Do not trust client side input, even if there is client side validation in place.

In general, type check all data on the server side.

If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'

If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.

If database Stored Procedures can be used, use them.

Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!

Do not create dynamic SQL queries using simple string concatenation.

Escape all data received from the client.

Apply a 'whitelist' of allowed characters, or a 'blacklist' of disallowed characters in user input.

Apply the principle of least privilege by using the least privileged database user possible.

In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.

Grant the minimum database access that is necessary for the application.

Other information

The page results were successfully manipulated using the boolean conditions [ AND 1=1 -- ] and [ AND 1=2 -- ]

The parameter value being modified was NOT stripped from the HTML output for the purposes of the comparison

Data was returned for the original parameter.

The vulnerability was detected by successfully restricting the data originally returned, by manipulating the parameter

Reference

https://www.owasp.org/index.php/Top_10_2010-A1

https://www.owasp.org/index.php/SQL_Injection_Prevention_Cheat_Sheet

CWE Id

89

WASC Id

19

High (Medium)SQL Injection - Authentication Bypass

Description

SQL injection may be possible on a login page, potentially allowing the application's authentication mechanism to be bypassed

URL

https://salesforce1.kayako.com/admin/index.php?/Base/Avatar/JSON/0/200

    Parameter

/Base/Avatar/JSON/0/200

    Attack

AND 1=1 --

Instances

1

Solution

Do not trust client side input, even if there is client side validation in place.

In general, type check all data on the server side.

If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'

If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.

If database Stored Procedures can be used, use them.

Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!

Do not create dynamic SQL queries using simple string concatenation.

Escape all data received from the client.

Apply a 'whitelist' of allowed characters, or a 'blacklist' of disallowed characters in user input.

Apply the principle of least privilege by using the least privileged database user possible.

In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.

Grant the minimum database access that is necessary for the application.

Reference

https://www.owasp.org/index.php/Top_10_2010-A1

https://www.owasp.org/index.php/SQL_Injection_Prevention_Cheat_Sheet

CWE Id

89

WASC Id

19

High (Medium)Remote OS Command Injection

Description

Attack technique used for unauthorized execution of operating system commands. This attack is possible when an application accepts untrusted input to build operating system commands in an insecure manner involving improper data sanitization, and/or improper calling of external programs.

URL

https://salesforce1.kayako.com/api/v1/teams?limit=10000%3Bsleep+%7B0%7Ds%3B&include=*

    Parameter

limit

    Attack

10000;sleep {0}s;

URL

https://salesforce1.kayako.com/api/v1/users/1?include=*%3Bstart-sleep+-s+%7B0%7D

    Parameter

include

    Attack

*;start-sleep -s {0}

URL

https://salesforce1.kayako.com/api/v1/users?include%5B%5D=role&include%5B%5D=identity-facebook&include%5B%5D=identity-twitter&include%5B%5D=identity-phone&include%5B%5D=identity_email&limit=500&role=agent%7Ctimeout+%2FT+5

    Parameter

role

    Attack

agent|timeout /T 5

URL

https://salesforce1.kayako.com/article/1-welcome-to-your-new-help-center?isloggedin=0%22%3Bsleep+5s%3B%22&rating=0

    Parameter

isloggedin

    Attack

0";sleep 5s;"

URL

https://salesforce1.kayako.com/conversation/submit

    Parameter

csrftoken

    Attack

3vhKWaKzA8D3FcMBdXNwAyBvf4mQVwVL1c9lmxobga4395N46r2ShGjD8in5XCZAC8Oyn4cZyCnRcTvuLRlirjqTsvBXdjWRXHW1&sleep {0}s&

Instances

5

Solution

If at all possible, use library calls rather than external processes to recreate the desired functionality.

Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.

OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.

This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.

For any data that will be used to generate a command to be executed, keep as much of that data out of external control as possible. For example, in web applications, this may require storing the command locally in the session's state instead of sending it out to the client in a hidden form field.

Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

For example, consider using the ESAPI Encoding control or a similar tool, library, or framework. These will help the programmer encode outputs in a manner less prone to error.

If you need to use dynamically-generated query strings or commands in spite of the risk, properly quote arguments and escape any special characters within those arguments. The most conservative approach is to escape or filter all characters that do not pass an extremely strict whitelist (such as everything that is not alphanumeric or white space). If some special characters are still needed, such as white space, wrap each argument in quotes after the escaping/filtering step. Be careful of argument injection.

If the program to be executed allows arguments to be specified within an input file or from standard input, then consider using that mode to pass arguments instead of the command line.

If available, use structured mechanisms that automatically enforce the separation between data and code. These mechanisms may be able to provide the relevant quoting, encoding, and validation automatically, instead of relying on the developer to provide this capability at every point where output is generated.

Some languages offer multiple functions that can be used to invoke commands. Where possible, identify any function that invokes a command shell using a single string, and replace it with a function that requires individual arguments. These functions typically perform appropriate quoting and filtering of arguments. For example, in C, the system() function accepts a string that contains the entire command to be executed, whereas execl(), execve(), and others require an array of strings, one for each argument. In Windows, CreateProcess() only accepts one command at a time. In Perl, if system() is provided with an array of arguments, then it will quote each of the arguments.

Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a whitelist of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a blacklist). However, blacklists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.

When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."

When constructing OS command strings, use stringent whitelists that limit the character set based on the expected value of the parameter in the request. This will indirectly limit the scope of an attack, but this technique is less important than proper output encoding and escaping.

Note that proper output encoding, escaping, and quoting is the most effective solution for preventing OS command injection, although input validation may provide some defense-in-depth. This is because it effectively limits what will appear in output. Input validation will not always prevent OS command injection, especially if you are required to support free-form text fields that could contain arbitrary characters. For example, when invoking a mail program, you might need to allow the subject field to contain otherwise-dangerous inputs like ";" and ">" characters, which would need to be escaped or otherwise handled. In this case, stripping the character might reduce the risk of OS command injection, but it would produce incorrect behavior because the subject field would not be recorded as the user intended. This might seem to be a minor inconvenience, but it could be more important when the program relies on well-structured subject lines in order to pass messages to other components.

Even if you make a mistake in your validation (such as forgetting one out of 100 input fields), appropriate encoding is still likely to protect you from injection-based attacks. As long as it is not done in isolation, input validation is still a useful technique, since it may significantly reduce your attack surface, allow you to detect some attacks, and provide other security benefits that proper encoding does not address.

Reference

http://cwe.mitre.org/data/definitions/78.html

https://www.owasp.org/index.php/Command_Injection

CWE Id

78

WASC Id

31

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

http://online.updrv.com:40008/160qq.html

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

http://wpa.qq.com/msgrd?v=3&uin=1827167044&site=qq&menu=yes

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://accounts.youtube.com/accounts/CheckConnection?pmpo=https%3A%2F%2Faccounts.google.com&v=-345924072&timestamp=1474443261843

URL

https://accounts.youtube.com/accounts/CheckConnection?pmpo=https%3A%2F%2Faccounts.google.com&v=207631222&timestamp=1474443982209

Instances

2

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICIiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAxfX0%3D&ip=1&_=1474443541139

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443541130

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443541120

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443543853

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443543860

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAwfX0%3D&ip=1&_=1474443552645

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443631065

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkcmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwiJHJlZmVycmluZ19kb21haW4iOiAiYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20iLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX3JlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443631074

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443631088

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443928792

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443928799

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443930342

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvbmV3LzIwMTYtMDktMjEtMDEtMTUtNDE%2FcmVxdWVzdGVyX2lkPTEiLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsInBhdGgiOiAiL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIj9yZXF1ZXN0ZXJfaWQ9MSIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxP3JlcXVlc3Rlcl9pZD0xIiwidG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkX19jIjogNX19&ip=1&_=1474443945750

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvMyIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQuY2FzZXMuY2FzZS5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLmNhc2UuaW5kZXgiLCJwYXRoIjogIi9hZ2VudC9jYXNlcy8zIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzLzMiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiA0fX0%3D&ip=1&_=1474443975366

Instances

14

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://api.segment.io/v1/p

URL

https://api.segment.io/v1/g

URL

https://api.segment.io/v1/i

Instances

3

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://salesforce1.kayako.com/api/v1/chats/teams.json?include=*

URL

https://salesforce1.kayako.com/agent/login

URL

https://salesforce1.kayako.com/api/v1/locales?include=*

URL

https://salesforce1.kayako.com/api/v1/locales/1/strings?include=*

URL

https://salesforce1.kayako.com/api/v1/session?include=*

URL

https://salesforce1.kayako.com/admin/index.php?/Base/Avatar/JSON/0/200

URL

https://salesforce1.kayako.com/api/v1/credentials?include=*

URL

https://salesforce1.kayako.com/api/v1/me?include=*

URL

https://salesforce1.kayako.com/api/v1/plan?include=*

URL

https://salesforce1.kayako.com/api/v1/settings?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

URL

https://salesforce1.kayako.com/api/v1/visitors.json?include=*

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=s&include=*

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=sunil&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/statuses?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/channels?user_id=1&include=*

URL

https://salesforce1.kayako.com/api/v1/users/1?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/fields?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/forms?include=*

URL

https://salesforce1.kayako.com/api/v1/teams?limit=10000&include=*

Instances

106

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)Format String Error

Description

A Format String error occurs when the submitted data of an input string is evaluated as a command by the application.

URL

https://salesforce1.kayako.com/api/v1/realtime/auth

    Parameter

socket_id

    Attack

ZAP

Instances

1

Solution

Rewrite the background program using proper deletion of bad character strings. This will require a recompile of the background executable.

Other information

Potential Format String Error. The script closed the connection on a /%s

Reference

https://www.owasp.org/index.php/Format_string_attack

CWE Id

134

WASC Id

6

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://salesforce1.kayakocdn.com/Core/Compressor/CSS/0920053a.css

URL

https://salesforce1.kayakocdn.com/Core/Compressor/CSS/76bea52f.css

URL

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

Instances

3

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://bam.nr-data.net/1/f1a4d7942e?a=24329136&v=974.7d740e1&to=NARXMRdWDUMEUkQKXg1OYBcMGExZC1VVGx8TCUU%3D&rst=96255&ref=https://salesforce1.kayako.com/&ap=412&be=28425&fe=67771&dc=67768&perf=%7B%22timing%22:%7B%22of%22:1474443237072,%22n%22:0,%22u%22:28297,%22ue%22:28306,%22f%22:3,%22dn%22:3,%22dne%22:3,%22c%22:3,%22ce%22:3,%22rq%22:2015,%22rp%22:15,%22rpe%22:28294,%22dl%22:28297,%22di%22:79845,%22ds%22:96187,%22de%22:96190,%22dc%22:96191,%22l%22:96191,%22le%22:96196%7D,%22navigation%22:%7B%7D%7D&at=GENUR19MHk0%3D&jsonp=NREUM.setToken

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://cdn.heapanalytics.com/js/heap-856155925.js

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://headwayapp.co/widgets/9JlDMJ

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://scripts.kissmetrics.com/9b3a18bfb0a00ddb670e8e7a6d59c74b8edc888c.2.js

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://sockjs.realtime.kayako.com/pusher/app/18a5dd4e63f17515e6c1/206/6e3ms8rq/xhr?protocol=7&client=js&version=3.0.0&t=1474443535601&n=2

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTU0NzM3NDE2&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDZ9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ3fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxNjY3LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDd9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDh9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ4fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ5fSx7ImNpZCI6MiwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTI5NTg2fSx7ImNpZCI6Miwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4Nn0seyJjaWQiOjIsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4OH0seyJjaWQiOjEsImVycm9yIjoiW29iamVjdCBFdmVudF0iLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTB9LHsiY2lkIjoxLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDA2LCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6ZmFsc2V9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTF9LHsiY2lkIjozLCJ0cmFuc3BvcnQiOiJ4aHJfc3RyZWFtaW5ncyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTU5N30seyJjaWQiOjMsInN0YXRlIjoiaW5pdGlhbGl6aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTMxNTk3fSx7ImNpZCI6Mywic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY1MX0seyJjaWQiOjMsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY4Nn0seyJzdGF0ZSI6InVuYXZhaWxhYmxlIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1MjUyfSx7ImNpZCI6NCwidHJhbnNwb3J0IjoieGhyX3BvbGxpbmdzIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1NjAwfSx7ImNpZCI6NCwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMH0seyJjaWQiOjQsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMn0seyJjaWQiOjIsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU0MDQ1MX0seyJjaWQiOjMsInN0YXRlIjoiY2xvc2VkIiwicGFyYW1zIjp7Indhc0NsZWFuIjp0cnVlfSwidGltZXN0YW1wIjoxNDc0NDQzNTQwODA0fSx7ImNpZCI6NCwic3RhdGUiOiJjbG9zZWQiLCJwYXJhbXMiOnsid2FzQ2xlYW4iOnRydWV9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDV9LHsic3RhdGUiOiJjb25uZWN0ZWQiLCJwYXJhbXMiOnsic29ja2V0X2lkIjoiMTE4OTkyLjUxMDAwMSJ9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDd9XQ%3D%3D

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTAyNDcxNTE0&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODF9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1NjgzfSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5Ijo0NTY4LCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODN9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODV9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg1fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg3fSx7ImNpZCI6MSwic3RhdGUiOiJvcGVuIiwidGltZXN0YW1wIjoxNDc0NDQzOTE3MTE5fSx7InN0YXRlIjoiY29ubmVjdGVkIiwicGFyYW1zIjp7InNvY2tldF9pZCI6IjExODk5NC41MTE5NzMifSwidGltZXN0YW1wIjoxNDc0NDQzOTE3MzEzfV0%3D

Instances

2

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://timeline17-clientstats1.pusher.com/timeline/v2/jsonp/2?session=MTU0NzM3NDE2&bundle=Mg%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siY2lkIjoyLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDAxLCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6dHJ1ZX0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MjA4M30seyJhY3Rpb24iOiJyZXRyeSIsImRlbGF5IjoxMDAwLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1OTIwODV9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxMTIyMSwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNpZCI6NSwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDkwfSx7ImNpZCI6NSwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5MH0seyJjaWQiOjUsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5Mn0seyJjaWQiOjUsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzUxM30seyJzdGF0ZSI6ImNvbm5lY3RlZCIsInBhcmFtcyI6eyJzb2NrZXRfaWQiOiIxMTg5OTEuNTEyMjEzIn0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzY2MH1d

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://www.fullstory.com/s/fs.js

URL

https://www.fullstory.com/rec/page

Instances

2

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://www.google-analytics.com/plugins/ua/linkid.js

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://www.google.com/_/og/promos/z

Instances

1

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Medium (Medium)X-Frame-Options Header Not Set

Description

X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.

URL

https://www.gstatic.com/og/_/js/k=og.og2.en_US.KMW6P5Jm_g8.O/rt=j/m=lat/exm=in,fot,def/d=1/ed=1/rs=AA2YrTuaoCfF_ou_sAU28mqApB13kG6icA

URL

https://www.gstatic.com/og/_/ss/k=og.og2.-mq5zx753xwgv.L.F4.O/m=lg/excm=in,fot/d=1/ed=1/rs=AA2YrTu7NobhuFBp6rU0TFoSq0VJC4EB8g

Instances

2

Solution

Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).

Other information

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx

CWE Id

16

WASC Id

15

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

http://online.updrv.com:40008/160qq.html

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

http://online.updrv.com:40008/160qq.html

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

http://wpa.qq.com/msgrd?v=3&uin=1827167044&site=qq&menu=yes

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

http://wpa.qq.com/msgrd?v=3&uin=1827167044&site=qq&menu=yes

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Cookie No HttpOnly Flag

Description

A cookie has been set without the HttpOnly flag, which means that the cookie can be accessed by JavaScript. If a malicious script can be run on this page then the cookie will be accessible and can be transmitted to another site. If this is a session cookie then session hijacking may be possible.

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

GALX=xmKRoEG8TqI;Path=/;Secure

    Evidence

GALX=xmKRoEG8TqI;Path=/;Secure

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

GALX

    Attack

xmKRoEG8TqI;Path=/;Secure

    Evidence

GALX=xmKRoEG8TqI;Path=/;Secure

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

GALX=LGz41zgIktU;Path=/;Secure

    Evidence

GALX=LGz41zgIktU;Path=/;Secure

Instances

3

Solution

Ensure that the HttpOnly flag is set for all cookies.

Reference

http://www.owasp.org/index.php/HttpOnly

CWE Id

16

WASC Id

13

Low (Medium)Password Autocomplete in Browser

Description

The AUTOCOMPLETE attribute is not disabled on an HTML FORM/INPUT element containing password type input. Passwords may be stored in browsers and retrieved.

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

input

    Evidence

<input id="Passwd" name="Passwd" type="password" placeholder="Password" class="">

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

input

    Evidence

<input id="Passwd-hidden" type="password" spellcheck="false" class="hidden">

URL

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/0/?tab%3Dwm&scc=1&authuser=0&ltmpl=default&ltmplcache=2&emr=1&osid=1

    Parameter

input

    Evidence

<input id="Passwd" name="Passwd" type="password" placeholder="Password" class="" >

Instances

3

Solution

Turn off the AUTOCOMPLETE attribute in forms or individual input elements containing password inputs by using AUTOCOMPLETE='OFF'.

Reference

http://www.w3schools.com/tags/att_input_autocomplete.asp

https://msdn.microsoft.com/en-us/library/ms533486%28v=vs.85%29.aspx

CWE Id

525

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://accounts.youtube.com/accounts/CheckConnection?pmpo=https%3A%2F%2Faccounts.google.com&v=-345924072&timestamp=1474443261843

URL

https://accounts.youtube.com/accounts/CheckConnection?pmpo=https%3A%2F%2Faccounts.google.com&v=207631222&timestamp=1474443982209

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICIiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAxfX0%3D&ip=1&_=1474443541139

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443541130

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443541120

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443543853

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443543860

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAwfX0%3D&ip=1&_=1474443552645

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443631065

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkcmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwiJHJlZmVycmluZ19kb21haW4iOiAiYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20iLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX3JlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443631074

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443631088

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443928792

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443928799

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443930342

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvbmV3LzIwMTYtMDktMjEtMDEtMTUtNDE%2FcmVxdWVzdGVyX2lkPTEiLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsInBhdGgiOiAiL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIj9yZXF1ZXN0ZXJfaWQ9MSIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxP3JlcXVlc3Rlcl9pZD0xIiwidG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkX19jIjogNX19&ip=1&_=1474443945750

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvMyIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQuY2FzZXMuY2FzZS5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLmNhc2UuaW5kZXgiLCJwYXRoIjogIi9hZ2VudC9jYXNlcy8zIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzLzMiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiA0fX0%3D&ip=1&_=1474443975366

Instances

14

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICIiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAxfX0%3D&ip=1&_=1474443541139

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443541130

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443541120

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443543853

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443543860

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAwfX0%3D&ip=1&_=1474443552645

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443631065

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkcmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwiJHJlZmVycmluZ19kb21haW4iOiAiYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20iLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX3JlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443631074

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443631088

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443928792

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443928799

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443930342

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvbmV3LzIwMTYtMDktMjEtMDEtMTUtNDE%2FcmVxdWVzdGVyX2lkPTEiLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsInBhdGgiOiAiL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIj9yZXF1ZXN0ZXJfaWQ9MSIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxP3JlcXVlc3Rlcl9pZD0xIiwidG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkX19jIjogNX19&ip=1&_=1474443945750

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvMyIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQuY2FzZXMuY2FzZS5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLmNhc2UuaW5kZXgiLCJwYXRoIjogIi9hZ2VudC9jYXNlcy8zIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzLzMiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiA0fX0%3D&ip=1&_=1474443975366

Instances

14

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICIiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAxfX0%3D&ip=1&_=1474443541139

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443541130

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443541120

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443543853

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443543860

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAwfX0%3D&ip=1&_=1474443552645

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&ip=1&_=1474443631065

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJtcF9wYWdlX3ZpZXciLCJwcm9wZXJ0aWVzIjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkcmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwiJHJlZmVycmluZ19kb21haW4iOiAiYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20iLCIkY3VycmVudF91cmwiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIm1wX3BhZ2UiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC9sb2dpbiIsIm1wX3JlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIm1wX2Jyb3dzZXIiOiAiRmlyZWZveCIsIm1wX3BsYXRmb3JtIjogIldpbmRvd3MiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyJ9fQ%3D%3D&ip=1&_=1474443631074

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJsb2dpbi5hZ2VudC5pbmRleCIsImNhdGVnb3J5IjogIlVua25vd24iLCJuYW1lIjogImxvZ2luLmFnZW50LmluZGV4IiwicGF0aCI6ICIvYWdlbnQvbG9naW4iLCJyZWZlcnJlciI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJzZWFyY2giOiAiIiwidXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvbG9naW4iLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443631088

URL

https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=6c31eea2cb97a30497045af5c6b6f963&distinct_id=6326c516-5a4e-5c2a-9048-50136fe47c85&ip=1&_=1474443928792

URL

https://api.mixpanel.com/engage/?data=eyIkc2V0IjogeyIkb3MiOiAiV2luZG93cyIsIiRicm93c2VyIjogIkZpcmVmb3giLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSJ9LCIkdG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkZGlzdGluY3RfaWQiOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1In0%3D&ip=1&_=1474443928799

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQud2VsY29tZSIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LndlbGNvbWUiLCJwYXRoIjogIi9hZ2VudC93ZWxjb21lIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L3dlbGNvbWUiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiAyfX0%3D&ip=1&_=1474443930342

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvbmV3LzIwMTYtMDktMjEtMDEtMTUtNDE%2FcmVxdWVzdGVyX2lkPTEiLCIkYnJvd3Nlcl92ZXJzaW9uIjogNDgsIiRzY3JlZW5faGVpZ2h0IjogNzY4LCIkc2NyZWVuX3dpZHRoIjogMTM2NiwibXBfbGliIjogIlNlZ21lbnQ6IHdlYiIsIiRsaWJfdmVyc2lvbiI6ICIyLjkuMTQiLCJkaXN0aW5jdF9pZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCIkaW5pdGlhbF9yZWZlcnJlciI6ICIkZGlyZWN0IiwiJGluaXRpYWxfcmVmZXJyaW5nX2RvbWFpbiI6ICIkZGlyZWN0IiwibXBfbmFtZV90YWciOiAiNjMyNmM1MTYtNWE0ZS01YzJhLTkwNDgtNTAxMzZmZTQ3Yzg1IiwiZ3JvdXBJZCI6ICIxMTQ4NjIiLCJpZCI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJ0aXRsZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLm5ldy5pbmRleCIsInBhdGgiOiAiL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIj9yZXF1ZXN0ZXJfaWQ9MSIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzL25ldy8yMDE2LTA5LTIxLTAxLTE1LTQxP3JlcXVlc3Rlcl9pZD0xIiwidG9rZW4iOiAiNmMzMWVlYTJjYjk3YTMwNDk3MDQ1YWY1YzZiNmY5NjMiLCIkX19jIjogNX19&ip=1&_=1474443945750

URL

https://api.mixpanel.com/track/?data=eyJldmVudCI6ICJMb2FkZWQgYSBQYWdlIiwicHJvcGVydGllcyI6IHsiJG9zIjogIldpbmRvd3MiLCIkYnJvd3NlciI6ICJGaXJlZm94IiwiJHJlZmVycmVyIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvd2VsY29tZSIsIiRyZWZlcnJpbmdfZG9tYWluIjogImFzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tIiwiJGN1cnJlbnRfdXJsIjogImh0dHBzOi8vYXN0cmVhLWl0LXNldmljZXN0ZXN0LmtheWFrby5jb20vYWdlbnQvY2FzZXMvMyIsIiRicm93c2VyX3ZlcnNpb24iOiA0OCwiJHNjcmVlbl9oZWlnaHQiOiA3NjgsIiRzY3JlZW5fd2lkdGgiOiAxMzY2LCJtcF9saWIiOiAiU2VnbWVudDogd2ViIiwiJGxpYl92ZXJzaW9uIjogIjIuOS4xNCIsImRpc3RpbmN0X2lkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsIiRpbml0aWFsX3JlZmVycmVyIjogIiRkaXJlY3QiLCIkaW5pdGlhbF9yZWZlcnJpbmdfZG9tYWluIjogIiRkaXJlY3QiLCJtcF9uYW1lX3RhZyI6ICI2MzI2YzUxNi01YTRlLTVjMmEtOTA0OC01MDEzNmZlNDdjODUiLCJncm91cElkIjogIjExNDg2MiIsImlkIjogIjYzMjZjNTE2LTVhNGUtNWMyYS05MDQ4LTUwMTM2ZmU0N2M4NSIsInRpdGxlIjogInNlc3Npb24uYWdlbnQuY2FzZXMuY2FzZS5pbmRleCIsImNhdGVnb3J5IjogIkFnZW50IiwibmFtZSI6ICJzZXNzaW9uLmFnZW50LmNhc2VzLmNhc2UuaW5kZXgiLCJwYXRoIjogIi9hZ2VudC9jYXNlcy8zIiwicmVmZXJyZXIiOiAiaHR0cHM6Ly9hc3RyZWEtaXQtc2V2aWNlc3Rlc3Qua2F5YWtvLmNvbS9hZ2VudC93ZWxjb21lIiwic2VhcmNoIjogIiIsInVybCI6ICJodHRwczovL2FzdHJlYS1pdC1zZXZpY2VzdGVzdC5rYXlha28uY29tL2FnZW50L2Nhc2VzLzMiLCJ0b2tlbiI6ICI2YzMxZWVhMmNiOTdhMzA0OTcwNDVhZjVjNmI2Zjk2MyIsIiRfX2MiOiA0fX0%3D&ip=1&_=1474443975366

Instances

14

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://api.segment.io/v1/p

URL

https://api.segment.io/v1/g

URL

https://api.segment.io/v1/i

Instances

3

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://api.segment.io/v1/p

URL

https://api.segment.io/v1/g

URL

https://api.segment.io/v1/i

Instances

3

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://api.segment.io/v1/p

URL

https://api.segment.io/v1/g

URL

https://api.segment.io/v1/i

Instances

3

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://salesforce1.kayako.com/

URL

https://salesforce1.kayako.com/api/v1/chats/teams.json?include=*

URL

https://salesforce1.kayako.com/agent/login

URL

https://salesforce1.kayako.com/api/v1/locales?include=*

URL

https://salesforce1.kayako.com/api/v1/locales/1/strings?include=*

URL

https://salesforce1.kayako.com/api/v1/session?include=*

URL

https://salesforce1.kayako.com/admin/index.php?/Base/Avatar/JSON/0/200

URL

https://salesforce1.kayako.com/api/v1/credentials?include=*

URL

https://salesforce1.kayako.com/api/v1/me?include=*

URL

https://salesforce1.kayako.com/api/v1/plan?include=*

URL

https://salesforce1.kayako.com/api/v1/settings?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

URL

https://salesforce1.kayako.com/agent/logout

URL

https://salesforce1.kayako.com/api/v1/visitors.json?include=*

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=s&include=*

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=sunil&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/statuses?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/channels?user_id=1&include=*

URL

https://salesforce1.kayako.com/api/v1/users/1?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/fields?include=*

Instances

127

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Cross-Domain JavaScript Source File Inclusion

Description

The page includes one or more script files from a third-party domain.

URL

https://salesforce1.kayako.com/

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/2dac1721.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/2dac1721.js

URL

https://salesforce1.kayako.com/agent/login

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/agent/login

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/agent/logout

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/agent/logout

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/404

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

URL

https://salesforce1.kayako.com/

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

URL

https://salesforce1.kayako.com/admin

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/admin

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/agent

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/agent

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/admin/

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/admin/

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/agent/

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/vendor-bcc3db83aa2b40c050d94ba9ddcf93bf.js

URL

https://salesforce1.kayako.com/agent/

    Parameter

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

    Evidence

https://salesforce1.kayakocdn.com/__apps/frontend/assets/__cp/assets/frontend-cp-3e3c99f0b8e4a7f450b1cee471b80f23.js

URL

https://salesforce1.kayako.com/login

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

URL

https://salesforce1.kayako.com/%3C%25=%20link%20%25%3E

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

URL

https://salesforce1.kayako.com/conversation/new

    Parameter

https://www.google.com/recaptcha/api.js?hl=en-us

    Evidence

https://www.google.com/recaptcha/api.js?hl=en-us

URL

https://salesforce1.kayako.com/conversation/new

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

URL

https://salesforce1.kayako.com/search/all?query=%3C%25=%20term.replace(/%3C/g,%20'%3C').replace(/%22/g,%20'%22')%20%25%3E

    Parameter

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

    Evidence

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

Instances

39

Solution

Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.

Reference

CWE Id

829

WASC Id

15

Low (Medium)Private IP Disclosure

Description

A private IP such as 10.x.x.x, 172.x.x.x, 192.168.x.x has been found in the HTTP response body. This information might be helpful for further attacks targeting internal systems.

URL

https://salesforce1.kayako.com/api/v1/locales/1/strings?include=*

    Attack

192.168.123.0

    Evidence

192.168.123.0

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Attack

10.2.2.185

    Evidence

10.2.2.185

URL

https://salesforce1.kayako.com/api/v1/me?include=*

    Attack

10.2.2.185

    Evidence

10.2.2.185

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

    Attack

10.2.2.185

    Evidence

10.2.2.185

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/me?include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=sunil&include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/users/1?include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/users?include%5B%5D=role&include%5B%5D=identity-facebook&include%5B%5D=identity-twitter&include%5B%5D=identity-phone&include%5B%5D=identity_email&limit=500&role=agent

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/cases?include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/cases/3/posts?limit=30&include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

URL

https://salesforce1.kayako.com/api/v1/cases/3/posts?limit=1&include=*

    Attack

10.2.2.10

    Evidence

10.2.2.10

Instances

13

Solution

Remove the private IP address from the HTTP response body. For comments, use JSP/ASP comment instead of HTML/JavaScript comment which can be seen by client browsers.

Other information

192.168.123.0

Reference

https://tools.ietf.org/html/rfc1918

CWE Id

200

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://salesforce1.kayako.com/api/v1/session?include=*

URL

https://salesforce1.kayako.com/404

URL

https://salesforce1.kayako.com/api

URL

https://salesforce1.kayako.com/api/v1

URL

https://salesforce1.kayako.com/api/v1/autocomplete

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=sunil&include=*

URL

https://salesforce1.kayako.com/api/v1/cases

URL

https://salesforce1.kayako.com/api/v1/cases/3

URL

https://salesforce1.kayako.com/api/v1/cases/3/tags?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/posts?limit=1&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/reply

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/reply/channels?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/channels?user_id=1&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/fields?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/forms?include=*

URL

https://salesforce1.kayako.com/api/v1/cases?include=*

URL

https://salesforce1.kayako.com/api/v1/chats

URL

https://salesforce1.kayako.com/api/v1/me?include=*

URL

https://salesforce1.kayako.com/api/v1/plan?include=*

Instances

49

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://salesforce1.kayako.com/api/v1/session?include=*

URL

https://salesforce1.kayako.com/404

URL

https://salesforce1.kayako.com/api

URL

https://salesforce1.kayako.com/api/v1

URL

https://salesforce1.kayako.com/api/v1/autocomplete

URL

https://salesforce1.kayako.com/api/v1/autocomplete/users?name=sunil&include=*

URL

https://salesforce1.kayako.com/api/v1/cases

URL

https://salesforce1.kayako.com/api/v1/cases/3

URL

https://salesforce1.kayako.com/api/v1/cases/3/tags?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/posts?limit=1&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/reply

URL

https://salesforce1.kayako.com/api/v1/cases/macros?limit=250&offset=0&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/3/reply/channels?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/channels?user_id=1&include=*

URL

https://salesforce1.kayako.com/api/v1/cases/fields?include=*

URL

https://salesforce1.kayako.com/api/v1/cases/forms?include=*

URL

https://salesforce1.kayako.com/api/v1/cases?include=*

URL

https://salesforce1.kayako.com/api/v1/chats

URL

https://salesforce1.kayako.com/api/v1/me?include=*

URL

https://salesforce1.kayako.com/api/v1/plan?include=*

Instances

49

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Cookie No HttpOnly Flag

Description

A cookie has been set without the HttpOnly flag, which means that the cookie can be accessed by JavaScript. If a malicious script can be run on this page then the cookie will be accessible and can be transmitted to another site. If this is a session cookie then session hijacking may be possible.

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Parameter

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

    Evidence

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Parameter

novo_sessionid

    Attack

deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

    Evidence

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

URL

https://salesforce1.kayako.com/

    Parameter

novo_sessionid=vVYWezSLw2eQZRjrNBpF7vLm9420764feacd3d4472fb5c53e78057a2afb9b9d6wsthtIKRErzw15XDUd6n2IIZPkm9; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=vVYWezSLw2eQZRjrNBpF7vLm9420764feacd3d4472fb5c53e78057a2afb9b9d6wsthtIKRErzw15XDUd6n2IIZPkm9; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/404

    Parameter

novo_sessionid=KlOPCHb9fsqKJlV75fqfnW0TsG3a52b1a47aa83dbd02aca4015a8b8ee0cd6725f9e9qFC0SPRK7xdsf7oIvRiYMwIi0saz; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=KlOPCHb9fsqKJlV75fqfnW0TsG3a52b1a47aa83dbd02aca4015a8b8ee0cd6725f9e9qFC0SPRK7xdsf7oIvRiYMwIi0saz; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/login

    Parameter

novo_sessionid=loEuRzP3df2NQQd5xhV0c705df83d4b8c83fa2ee636765eae90829c59cc4cd3NTbCqi2EqS2j7PL6BfkeU4w; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=loEuRzP3df2NQQd5xhV0c705df83d4b8c83fa2ee636765eae90829c59cc4cd3NTbCqi2EqS2j7PL6BfkeU4w; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/%3C%25=%20link%20%25%3E

    Parameter

novo_sessionid=mImJijrmnwxv703fcf0568e9552f21197f866d9c21b9c105b6b78EXabZTEIVjyV9k4T; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=mImJijrmnwxv703fcf0568e9552f21197f866d9c21b9c105b6b78EXabZTEIVjyV9k4T; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/conversation/new

    Parameter

novo_sessionid=NrtA823ecm2NSO9IFoyaca5a2f27589e3a4b90bb7ec69e3c73437327093TwnMh6EuMhSQkTEE2xtjF76p0YSS3; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=NrtA823ecm2NSO9IFoyaca5a2f27589e3a4b90bb7ec69e3c73437327093TwnMh6EuMhSQkTEE2xtjF76p0YSS3; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/search/all?query=%3C%25=%20term.replace(/%3C/g,%20'%3C').replace(/%22/g,%20'%22')%20%25%3E

    Parameter

novo_sessionid=BnDstfqX1qUij5U4A1f3933201eb39ca5fad7b556d48fe09b22ccb0d0vtwdxu7h6eEKL9DX6LMADAKtsrc; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=BnDstfqX1qUij5U4A1f3933201eb39ca5fad7b556d48fe09b22ccb0d0vtwdxu7h6eEKL9DX6LMADAKtsrc; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/category/1-getting-started

    Parameter

novo_sessionid=jMuhD1P3PeYlC95d007598d1be4da6d1765c6bb13982dde7fb45e7xUAEdLTjkPVofnXTL9wKvgKpmkWJt; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=jMuhD1P3PeYlC95d007598d1be4da6d1765c6bb13982dde7fb45e7xUAEdLTjkPVofnXTL9wKvgKpmkWJt; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/section/1-welcome

    Parameter

novo_sessionid=hzpzlIdJ9PCTBD8MTKOF7a49c613b4b9e7b11cb148041973102733682537f9PhJSwNQZnupbUww; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=hzpzlIdJ9PCTBD8MTKOF7a49c613b4b9e7b11cb148041973102733682537f9PhJSwNQZnupbUww; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/article/1-welcome-to-your-new-help-center

    Parameter

novo_sessionid=o4N4U16nNeLgSpmDHi43bc2389ace2ab82984bf0568093c05d170be79389cMf3mMeIFy; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=o4N4U16nNeLgSpmDHi43bc2389ace2ab82984bf0568093c05d170be79389cMf3mMeIFy; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/search/all?query=ZAP&utf8=%E2%9C%93

    Parameter

novo_sessionid=svfacTGOlBQjhb96be86f569d460143f44692740c778ad3e7c6acbdsyjM7tFMA6Q; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=svfacTGOlBQjhb96be86f569d460143f44692740c778ad3e7c6acbdsyjM7tFMA6Q; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/signup

    Parameter

novo_sessionid=a42TWvkSQl9e2caf5a7f17181ef32684bfd3b29973f957de8f2YzvxKQ1Vp7bC5LtBZKEfh1yVErN0x; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=a42TWvkSQl9e2caf5a7f17181ef32684bfd3b29973f957de8f2YzvxKQ1Vp7bC5LtBZKEfh1yVErN0x; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/account/forgotpassword

    Parameter

novo_sessionid=7lnqKaG0LligEm7vXFcTSjv7dcfb23daf4e0c3ddd36902606764a62331db6554U2fSh7wq5keV7pP; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=7lnqKaG0LligEm7vXFcTSjv7dcfb23daf4e0c3ddd36902606764a62331db6554U2fSh7wq5keV7pP; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/login

    Parameter

novo_sessionid=MWlY6ll4wdEvWaO6m2E0N2bfc0a5b062814193144f67884397671996aeda59jxcRomiWR7xRDdSfYcBkPPaeUtGb; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=MWlY6ll4wdEvWaO6m2E0N2bfc0a5b062814193144f67884397671996aeda59jxcRomiWR7xRDdSfYcBkPPaeUtGb; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/login

    Parameter

novo_sessionid=B66pczXd1i2Ao53wnTCdb77058b967bdf3e8c033d5f1f73f9b9c6cf1c104rvcjh20lVvZD4HpMAMp; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=B66pczXd1i2Ao53wnTCdb77058b967bdf3e8c033d5f1f73f9b9c6cf1c104rvcjh20lVvZD4HpMAMp; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/conversation/submit

    Parameter

novo_sessionid=AxUQLtZTxKgHKd4eddbf65bf43ab3548e86d110b68f73539e3f3dVemjOs4k0fO3x9WzdP9tTHNKtR; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=AxUQLtZTxKgHKd4eddbf65bf43ab3548e86d110b68f73539e3f3dVemjOs4k0fO3x9WzdP9tTHNKtR; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/search/all?query=%3C%25%3D+term.replace%28%2F%3C%2Fg%2C+%27%3C%27%29.replace%28%2F%22%2Fg%2C+%27%22%27%29+%25%3E&utf8=%E2%9C%93

    Parameter

novo_sessionid=E6yuxSPzLYPHcpE6zg3c0e60ca1ae4bb94dabc49d7305be801c4745701lJzxNHmdt7R0ASgE5frZQiDiwe8; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=E6yuxSPzLYPHcpE6zg3c0e60ca1ae4bb94dabc49d7305be801c4745701lJzxNHmdt7R0ASgE5frZQiDiwe8; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/category/%3C%25=%20link%20%25%3E

    Parameter

novo_sessionid=8hykCPDEQ2RUXOp6846217f060d2c682f5d15edfb5a98a0616e06cabRLlI6sQAoGacvg7IIxkyemFOhpo; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=8hykCPDEQ2RUXOp6846217f060d2c682f5d15edfb5a98a0616e06cabRLlI6sQAoGacvg7IIxkyemFOhpo; path=/; domain=salesforce1.kayako.com; secure

URL

https://salesforce1.kayako.com/section/%3C%25=%20link%20%25%3E

    Parameter

novo_sessionid=4HzKxjiW82dvAu3LhKl60s6bLEq97d387d61dbeb2398d9b2020da12b689739858366dCV8JUOnYRYohZ5hGDPexwplU9; path=/; domain=salesforce1.kayako.com; secure

    Evidence

novo_sessionid=4HzKxjiW82dvAu3LhKl60s6bLEq97d387d61dbeb2398d9b2020da12b689739858366dCV8JUOnYRYohZ5hGDPexwplU9; path=/; domain=salesforce1.kayako.com; secure

Instances

31

Solution

Ensure that the HttpOnly flag is set for all cookies.

Reference

http://www.owasp.org/index.php/HttpOnly

CWE Id

16

WASC Id

13

Low (Medium)Cookie Without Secure Flag

Description

A cookie has been set without the secure flag, which means that the cookie can be accessed via unencrypted connections.

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Parameter

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

    Evidence

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

URL

https://salesforce1.kayako.com/api/v1/session?include=*

    Parameter

novo_sessionid

    Attack

deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

    Evidence

novo_sessionid=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; domain=salesforce1.kayako.com

Instances

2

Solution

Whenever a cookie contains sensitive information or is a session token, then it should always be passed using an encrypted channel. Ensure that the secure flag is set for cookies containing such sensitive information.

Reference

http://www.owasp.org/index.php/Testing_for_cookies_attributes_(OWASP-SM-002)

CWE Id

614

WASC Id

13

Low (Medium)Password Autocomplete in Browser

Description

The AUTOCOMPLETE attribute is not disabled on an HTML FORM/INPUT element containing password type input. Passwords may be stored in browsers and retrieved.

URL

https://salesforce1.kayako.com/login

    Parameter

input

    Evidence

<input class="textfield js-required-field js-noblur" id="password" name="password" type="password">

URL

https://salesforce1.kayako.com/login?return=/article/1-welcome-to-your-new-help-center

    Parameter

input

    Evidence

<input class="textfield js-required-field js-noblur" id="password" name="password" type="password">

Instances

2

Solution

Turn off the AUTOCOMPLETE attribute in forms or individual input elements containing password inputs by using AUTOCOMPLETE='OFF'.

Reference

http://www.w3schools.com/tags/att_input_autocomplete.asp

https://msdn.microsoft.com/en-us/library/ms533486%28v=vs.85%29.aspx

CWE Id

525

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://salesforce1.kayakocdn.com/Core/Compressor/JS/24b6f971.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://bam.nr-data.net/1/f1a4d7942e?a=24329136&v=974.7d740e1&to=NARXMRdWDUMEUkQKXg1OYBcMGExZC1VVGx8TCUU%3D&rst=96255&ref=https://salesforce1.kayako.com/&ap=412&be=28425&fe=67771&dc=67768&perf=%7B%22timing%22:%7B%22of%22:1474443237072,%22n%22:0,%22u%22:28297,%22ue%22:28306,%22f%22:3,%22dn%22:3,%22dne%22:3,%22c%22:3,%22ce%22:3,%22rq%22:2015,%22rp%22:15,%22rpe%22:28294,%22dl%22:28297,%22di%22:79845,%22ds%22:96187,%22de%22:96190,%22dc%22:96191,%22l%22:96191,%22le%22:96196%7D,%22navigation%22:%7B%7D%7D&at=GENUR19MHk0%3D&jsonp=NREUM.setToken

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://bam.nr-data.net/1/f1a4d7942e?a=24329136&v=974.7d740e1&to=NARXMRdWDUMEUkQKXg1OYBcMGExZC1VVGx8TCUU%3D&rst=96255&ref=https://salesforce1.kayako.com/&ap=412&be=28425&fe=67771&dc=67768&perf=%7B%22timing%22:%7B%22of%22:1474443237072,%22n%22:0,%22u%22:28297,%22ue%22:28306,%22f%22:3,%22dn%22:3,%22dne%22:3,%22c%22:3,%22ce%22:3,%22rq%22:2015,%22rp%22:15,%22rpe%22:28294,%22dl%22:28297,%22di%22:79845,%22ds%22:96187,%22de%22:96190,%22dc%22:96191,%22l%22:96191,%22le%22:96196%7D,%22navigation%22:%7B%7D%7D&at=GENUR19MHk0%3D&jsonp=NREUM.setToken

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://bam.nr-data.net/1/f1a4d7942e?a=24329136&v=974.7d740e1&to=NARXMRdWDUMEUkQKXg1OYBcMGExZC1VVGx8TCUU%3D&rst=96255&ref=https://salesforce1.kayako.com/&ap=412&be=28425&fe=67771&dc=67768&perf=%7B%22timing%22:%7B%22of%22:1474443237072,%22n%22:0,%22u%22:28297,%22ue%22:28306,%22f%22:3,%22dn%22:3,%22dne%22:3,%22c%22:3,%22ce%22:3,%22rq%22:2015,%22rp%22:15,%22rpe%22:28294,%22dl%22:28297,%22di%22:79845,%22ds%22:96187,%22de%22:96190,%22dc%22:96191,%22l%22:96191,%22le%22:96196%7D,%22navigation%22:%7B%7D%7D&at=GENUR19MHk0%3D&jsonp=NREUM.setToken

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://cdn.heapanalytics.com/js/heap-856155925.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://cdn.heapanalytics.com/js/heap-856155925.js

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://cdn.heapanalytics.com/js/heap-856155925.js

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Cross-Domain JavaScript Source File Inclusion

Description

The page includes one or more script files from a third-party domain.

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

https://www.fullstory.com/s/fs.js

    Evidence

https://www.fullstory.com/s/fs.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

//www.google-analytics.com/analytics.js

    Evidence

//www.google-analytics.com/analytics.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

//stats.g.doubleclick.net/dc.js

    Evidence

//stats.g.doubleclick.net/dc.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

http://www.google-analytics.com/ga.js

    Evidence

http://www.google-analytics.com/ga.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

https://ssl.google-analytics.com/ga.js

    Evidence

https://ssl.google-analytics.com/ga.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

    Evidence

//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

    Parameter

//tracker.totango.com/totango3.js

    Evidence

//tracker.totango.com/totango3.js

Instances

7

Solution

Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.

Reference

CWE Id

829

WASC Id

15

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://cdn.segment.com/analytics.js/v1/hBGgFGyU7yqAnhLA6P9wiivY6iMbmb4U/analytics.min.js

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2

URL

https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://headwayapp.co/widgets/9JlDMJ

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Cross-Domain JavaScript Source File Inclusion

Description

The page includes one or more script files from a third-party domain.

URL

https://headwayapp.co/widgets/9JlDMJ

    Parameter

//assets0.headwayapp.co/assets/js/widget/app-ccbb152ab5.js

    Evidence

//assets0.headwayapp.co/assets/js/widget/app-ccbb152ab5.js

Instances

1

Solution

Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.

Reference

CWE Id

829

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://mail.google.com/mail/?tab=wm

URL

https://mail.google.com/mail/u/0/?tab=wm

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChVnb29nLWJhZGJpbnVybC1zaGF2YXI4AEACSgwIARCB_gYYgf4GIAFKDAgAEMPqBhjD6gYgAQ

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyOABAAkoMCAEQu_cOGLv3DiABSgwIABCOnA8YjpwPIAE

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChFnb29nLXBoaXNoLXNoYXZhcjgAQAJKDAgBEMG0ERjCtBEgAUoMCAAQv_sbGL_7GyAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChRnb29nLXVud2FudGVkLXNoYXZhcjgAQAJKDAgBEJLBBBiSwQQgAUoMCAAQg-EEGIPhBCAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChVnb29nLWJhZGJpbnVybC1zaGF2YXI4AEACSgwIARCC_gYYgv4GIAFKDAgAEMTqBhjE6gYgAQ

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyOABAAkoMCAEQvPcOGLz3DiABSgwIABCPnA8Yj5wPIAE

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChFnb29nLXBoaXNoLXNoYXZhcjgAQAJKDAgBEMO0ERjDtBEgAUoMCAAQwPsbGMH7GyAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChRnb29nLXVud2FudGVkLXNoYXZhcjgAQAJKDAgBEJPBBBiTwQQgAUoMCAAQhOEEGIThBCAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChVnb29nLWJhZGJpbnVybC1zaGF2YXI4AEACSgwIARCD_gYYg_4GIAFKDAgAEMXqBhjF6gYgAQ

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyOABAAkoMCAEQvfcOGL33DiABSgwIABCQnA8YkJwPIAE

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChFnb29nLXBoaXNoLXNoYXZhcjgAQAJKDAgBEMS0ERjJtBEgAUoMCAAQwvsbGML7GyAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChRnb29nLXVud2FudGVkLXNoYXZhcjgAQAJKDAgBEJTBBBiUwQQgAUoMCAAQheEEGIXhBCAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChVnb29nLWJhZGJpbnVybC1zaGF2YXI4AEACSgwIARCE_gYYhP4GIAFKDAgAEMbqBhjG6gYgAQ

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyOABAAkoMCAEQvvcOGL73DiABSgwIABCRnA8YkZwPIAE

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChFnb29nLXBoaXNoLXNoYXZhcjgAQAJKDAgBEMq0ERjKtBEgAUoMCAAQw_sbGMP7GyAB

URL

https://safebrowsing-cache.google.com/safebrowsing/rd/ChRnb29nLXVud2FudGVkLXNoYXZhcjgAQAJKDAgBEJXBBBiVwQQgAUoMCAAQhuEEGIbhBCAB

Instances

16

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://safebrowsing.google.com/safebrowsing/downloads?client=navclient-auto-ffox&appver=48.0&pver=2.2&key=AIzaSyD_Drzahe4dBzGCZ9ArvowCvrPx_yFrlCM

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://scripts.kissmetrics.com/9b3a18bfb0a00ddb670e8e7a6d59c74b8edc888c.2.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://scripts.kissmetrics.com/9b3a18bfb0a00ddb670e8e7a6d59c74b8edc888c.2.js

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://scripts.kissmetrics.com/9b3a18bfb0a00ddb670e8e7a6d59c74b8edc888c.2.js

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://shavar.services.mozilla.com/downloads?client=navclient-auto-ffox&appver=48.0&pver=2.2

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://shavar.services.mozilla.com/downloads?client=navclient-auto-ffox&appver=48.0&pver=2.2

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://sockjs.realtime.kayako.com/pusher/app/18a5dd4e63f17515e6c1/206/6e3ms8rq/xhr?protocol=7&client=js&version=3.0.0&t=1474443535601&n=2

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://sockjs.realtime.kayako.com/pusher/app/18a5dd4e63f17515e6c1/206/6e3ms8rq/xhr?protocol=7&client=js&version=3.0.0&t=1474443535601&n=2

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://sockjs.realtime.kayako.com/pusher/app/18a5dd4e63f17515e6c1/206/6e3ms8rq/xhr?protocol=7&client=js&version=3.0.0&t=1474443535601&n=2

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTU0NzM3NDE2&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDZ9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ3fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxNjY3LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDd9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDh9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ4fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ5fSx7ImNpZCI6MiwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTI5NTg2fSx7ImNpZCI6Miwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4Nn0seyJjaWQiOjIsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4OH0seyJjaWQiOjEsImVycm9yIjoiW29iamVjdCBFdmVudF0iLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTB9LHsiY2lkIjoxLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDA2LCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6ZmFsc2V9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTF9LHsiY2lkIjozLCJ0cmFuc3BvcnQiOiJ4aHJfc3RyZWFtaW5ncyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTU5N30seyJjaWQiOjMsInN0YXRlIjoiaW5pdGlhbGl6aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTMxNTk3fSx7ImNpZCI6Mywic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY1MX0seyJjaWQiOjMsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY4Nn0seyJzdGF0ZSI6InVuYXZhaWxhYmxlIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1MjUyfSx7ImNpZCI6NCwidHJhbnNwb3J0IjoieGhyX3BvbGxpbmdzIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1NjAwfSx7ImNpZCI6NCwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMH0seyJjaWQiOjQsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMn0seyJjaWQiOjIsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU0MDQ1MX0seyJjaWQiOjMsInN0YXRlIjoiY2xvc2VkIiwicGFyYW1zIjp7Indhc0NsZWFuIjp0cnVlfSwidGltZXN0YW1wIjoxNDc0NDQzNTQwODA0fSx7ImNpZCI6NCwic3RhdGUiOiJjbG9zZWQiLCJwYXJhbXMiOnsid2FzQ2xlYW4iOnRydWV9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDV9LHsic3RhdGUiOiJjb25uZWN0ZWQiLCJwYXJhbXMiOnsic29ja2V0X2lkIjoiMTE4OTkyLjUxMDAwMSJ9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDd9XQ%3D%3D

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTAyNDcxNTE0&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODF9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1NjgzfSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5Ijo0NTY4LCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODN9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODV9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg1fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg3fSx7ImNpZCI6MSwic3RhdGUiOiJvcGVuIiwidGltZXN0YW1wIjoxNDc0NDQzOTE3MTE5fSx7InN0YXRlIjoiY29ubmVjdGVkIiwicGFyYW1zIjp7InNvY2tldF9pZCI6IjExODk5NC41MTE5NzMifSwidGltZXN0YW1wIjoxNDc0NDQzOTE3MzEzfV0%3D

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTU0NzM3NDE2&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDZ9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ3fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxNjY3LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDd9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDh9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ4fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ5fSx7ImNpZCI6MiwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTI5NTg2fSx7ImNpZCI6Miwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4Nn0seyJjaWQiOjIsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4OH0seyJjaWQiOjEsImVycm9yIjoiW29iamVjdCBFdmVudF0iLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTB9LHsiY2lkIjoxLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDA2LCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6ZmFsc2V9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTF9LHsiY2lkIjozLCJ0cmFuc3BvcnQiOiJ4aHJfc3RyZWFtaW5ncyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTU5N30seyJjaWQiOjMsInN0YXRlIjoiaW5pdGlhbGl6aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTMxNTk3fSx7ImNpZCI6Mywic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY1MX0seyJjaWQiOjMsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY4Nn0seyJzdGF0ZSI6InVuYXZhaWxhYmxlIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1MjUyfSx7ImNpZCI6NCwidHJhbnNwb3J0IjoieGhyX3BvbGxpbmdzIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1NjAwfSx7ImNpZCI6NCwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMH0seyJjaWQiOjQsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMn0seyJjaWQiOjIsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU0MDQ1MX0seyJjaWQiOjMsInN0YXRlIjoiY2xvc2VkIiwicGFyYW1zIjp7Indhc0NsZWFuIjp0cnVlfSwidGltZXN0YW1wIjoxNDc0NDQzNTQwODA0fSx7ImNpZCI6NCwic3RhdGUiOiJjbG9zZWQiLCJwYXJhbXMiOnsid2FzQ2xlYW4iOnRydWV9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDV9LHsic3RhdGUiOiJjb25uZWN0ZWQiLCJwYXJhbXMiOnsic29ja2V0X2lkIjoiMTE4OTkyLjUxMDAwMSJ9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDd9XQ%3D%3D

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTAyNDcxNTE0&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODF9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1NjgzfSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5Ijo0NTY4LCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODN9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODV9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg1fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg3fSx7ImNpZCI6MSwic3RhdGUiOiJvcGVuIiwidGltZXN0YW1wIjoxNDc0NDQzOTE3MTE5fSx7InN0YXRlIjoiY29ubmVjdGVkIiwicGFyYW1zIjp7InNvY2tldF9pZCI6IjExODk5NC41MTE5NzMifSwidGltZXN0YW1wIjoxNDc0NDQzOTE3MzEzfV0%3D

Instances

2

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTU0NzM3NDE2&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDZ9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ3fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxNjY3LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDd9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1MjUyNDh9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ4fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTI1MjQ5fSx7ImNpZCI6MiwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTI5NTg2fSx7ImNpZCI6Miwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4Nn0seyJjaWQiOjIsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUyOTU4OH0seyJjaWQiOjEsImVycm9yIjoiW29iamVjdCBFdmVudF0iLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTB9LHsiY2lkIjoxLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDA2LCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6ZmFsc2V9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1Mjk1OTF9LHsiY2lkIjozLCJ0cmFuc3BvcnQiOiJ4aHJfc3RyZWFtaW5ncyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTU5N30seyJjaWQiOjMsInN0YXRlIjoiaW5pdGlhbGl6aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTMxNTk3fSx7ImNpZCI6Mywic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY1MX0seyJjaWQiOjMsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzMTY4Nn0seyJzdGF0ZSI6InVuYXZhaWxhYmxlIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1MjUyfSx7ImNpZCI6NCwidHJhbnNwb3J0IjoieGhyX3BvbGxpbmdzIiwidGltZXN0YW1wIjoxNDc0NDQzNTM1NjAwfSx7ImNpZCI6NCwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMH0seyJjaWQiOjQsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzUzNTYwMn0seyJjaWQiOjIsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU0MDQ1MX0seyJjaWQiOjMsInN0YXRlIjoiY2xvc2VkIiwicGFyYW1zIjp7Indhc0NsZWFuIjp0cnVlfSwidGltZXN0YW1wIjoxNDc0NDQzNTQwODA0fSx7ImNpZCI6NCwic3RhdGUiOiJjbG9zZWQiLCJwYXJhbXMiOnsid2FzQ2xlYW4iOnRydWV9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDV9LHsic3RhdGUiOiJjb25uZWN0ZWQiLCJwYXJhbXMiOnsic29ja2V0X2lkIjoiMTE4OTkyLjUxMDAwMSJ9LCJ0aW1lc3RhbXAiOjE0NzQ0NDM1NDA4MDd9XQ%3D%3D

URL

https://stats.pusher.com/timeline/v2/jsonp/1?session=MTAyNDcxNTE0&bundle=MQ%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siaW5zdGFuY2VzIjoxLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODF9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1NjgzfSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5Ijo0NTY4LCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODN9LHsiY2lkIjoxLCJ0cmFuc3BvcnQiOiJ3c3MiLCJ0aW1lc3RhbXAiOjE0NzQ0NDM5MTU2ODV9LHsiY2lkIjoxLCJzdGF0ZSI6ImluaXRpYWxpemVkIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg1fSx7ImNpZCI6MSwic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzOTE1Njg3fSx7ImNpZCI6MSwic3RhdGUiOiJvcGVuIiwidGltZXN0YW1wIjoxNDc0NDQzOTE3MTE5fSx7InN0YXRlIjoiY29ubmVjdGVkIiwicGFyYW1zIjp7InNvY2tldF9pZCI6IjExODk5NC41MTE5NzMifSwidGltZXN0YW1wIjoxNDc0NDQzOTE3MzEzfV0%3D

Instances

2

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://timeline17-clientstats1.pusher.com/timeline/v2/jsonp/2?session=MTU0NzM3NDE2&bundle=Mg%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siY2lkIjoyLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDAxLCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6dHJ1ZX0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MjA4M30seyJhY3Rpb24iOiJyZXRyeSIsImRlbGF5IjoxMDAwLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1OTIwODV9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxMTIyMSwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNpZCI6NSwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDkwfSx7ImNpZCI6NSwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5MH0seyJjaWQiOjUsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5Mn0seyJjaWQiOjUsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzUxM30seyJzdGF0ZSI6ImNvbm5lY3RlZCIsInBhcmFtcyI6eyJzb2NrZXRfaWQiOiIxMTg5OTEuNTEyMjEzIn0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzY2MH1d

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://timeline17-clientstats1.pusher.com/timeline/v2/jsonp/2?session=MTU0NzM3NDE2&bundle=Mg%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siY2lkIjoyLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDAxLCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6dHJ1ZX0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MjA4M30seyJhY3Rpb24iOiJyZXRyeSIsImRlbGF5IjoxMDAwLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1OTIwODV9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxMTIyMSwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNpZCI6NSwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDkwfSx7ImNpZCI6NSwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5MH0seyJjaWQiOjUsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5Mn0seyJjaWQiOjUsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzUxM30seyJzdGF0ZSI6ImNvbm5lY3RlZCIsInBhcmFtcyI6eyJzb2NrZXRfaWQiOiIxMTg5OTEuNTEyMjEzIn0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzY2MH1d

Instances

1

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://timeline17-clientstats1.pusher.com/timeline/v2/jsonp/2?session=MTU0NzM3NDE2&bundle=Mg%3D%3D&key=MThhNWRkNGU2M2YxNzUxNWU2YzE%3D&lib=anM%3D&version=My4wLjA%3D&features=WyJ3cyJd&timeline=W3siY2lkIjoyLCJzdGF0ZSI6ImNsb3NlZCIsInBhcmFtcyI6eyJjb2RlIjoxMDAxLCJyZWFzb24iOiIiLCJ3YXNDbGVhbiI6dHJ1ZX0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MjA4M30seyJhY3Rpb24iOiJyZXRyeSIsImRlbGF5IjoxMDAwLCJ0aW1lc3RhbXAiOjE0NzQ0NDM1OTIwODV9LHsic3RhdGUiOiJjb25uZWN0aW5nIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNhY2hlZCI6dHJ1ZSwidHJhbnNwb3J0Ijoid3MiLCJsYXRlbmN5IjoxMTIyMSwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDg4fSx7ImNpZCI6NSwidHJhbnNwb3J0Ijoid3NzIiwidGltZXN0YW1wIjoxNDc0NDQzNTkzMDkwfSx7ImNpZCI6NSwic3RhdGUiOiJpbml0aWFsaXplZCIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5MH0seyJjaWQiOjUsInN0YXRlIjoiY29ubmVjdGluZyIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5MzA5Mn0seyJjaWQiOjUsInN0YXRlIjoib3BlbiIsInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzUxM30seyJzdGF0ZSI6ImNvbm5lY3RlZCIsInBhcmFtcyI6eyJzb2NrZXRfaWQiOiIxMTg5OTEuNTEyMjEzIn0sInRpbWVzdGFtcCI6MTQ3NDQ0MzU5NzY2MH1d

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://www.fullstory.com/s/fs.js

URL

https://www.fullstory.com/rec/page

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Web Browser XSS Protection Not Enabled

Description

Web Browser XSS Protection is not enabled, or is disabled by the configuration of the 'X-XSS-Protection' HTTP response header on the web server

URL

https://www.fullstory.com/s/fs.js

URL

https://www.fullstory.com/rec/page

Instances

2

Solution

Ensure that the web browser's XSS filter is enabled, by setting the X-XSS-Protection HTTP response header to '1'.

Other information

The X-XSS-Protection HTTP response header allows the web server to enable or disable the web browser's XSS protection mechanism. The following values would attempt to enable it:

X-XSS-Protection: 1; mode=block

X-XSS-Protection: 1; report=http://www.example.com/xss

The following values would disable it:

X-XSS-Protection: 0

The X-XSS-Protection HTTP response header is currently supported on Internet Explorer, Chrome and Safari (WebKit).

Note that this alert is only raised if the response body could potentially contain an XSS payload (with a text-based content type, with a non-zero length).

Reference

https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet

https://blog.veracode.com/2014/03/guidelines-for-setting-security-headers/

CWE Id

933

WASC Id

14

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://www.fullstory.com/s/fs.js

URL

https://www.fullstory.com/rec/page

Instances

2

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://www.google-analytics.com/plugins/ua/linkid.js

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://www.google.com/_/og/promos/z

Instances

1

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13

Low (Medium)X-Content-Type-Options Header Missing

Description

The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.

URL

https://www.google.com/_/og/promos/z

Instances

1

Solution

Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.

Other information

This issue still applies to error type pages (401, 403, 500, etc) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.

At "High" threshold this scanner will not alert on client or server error responses.

Reference

http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx

https://www.owasp.org/index.php/List_of_useful_HTTP_headers

CWE Id

16

WASC Id

15

Low (Medium)Incomplete or No Cache-control and Pragma HTTP Header Set

Description

The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.

URL

https://www.gstatic.com/og/_/js/k=og.og2.en_US.KMW6P5Jm_g8.O/rt=j/m=lat/exm=in,fot,def/d=1/ed=1/rs=AA2YrTuaoCfF_ou_sAU28mqApB13kG6icA

URL

https://www.gstatic.com/og/_/ss/k=og.og2.-mq5zx753xwgv.L.F4.O/m=lg/excm=in,fot/d=1/ed=1/rs=AA2YrTu7NobhuFBp6rU0TFoSq0VJC4EB8g

Instances

2

Solution

Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate, private; and that the pragma HTTP header is set with no-cache.

Reference

https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching

CWE Id

525

WASC Id

13